home *** CD-ROM | disk | FTP | other *** search
/ Yellows - Privacy (Deluxe) / Akira Gomi Photographs - Yellows: Privacy (Deluxe) - Disc 1.iso / footage / pict16.dxr / 00023.ls < prev    next >
Encoding:
Text File  |  1996-07-10  |  1.4 KB  |  55 lines

  1. global foreframe, delaytime, pause, movieshow, qtframelist, moviepos, g_pause, womannum, pict, g_image
  2.  
  3. on exitFrame
  4.   if rollOver(38) then
  5.     go(the frame + 1)
  6.   else
  7.     if rollOver(39) then
  8.       go(the frame + 2)
  9.     else
  10.       if rollOver(40) then
  11.         go(the frame + 3)
  12.       else
  13.         if rollOver(41) then
  14.           go(the frame + 4)
  15.         else
  16.           if rollOver(42) then
  17.             go(the frame + 5)
  18.           else
  19.             if rollOver(43) then
  20.               go(the frame + 6)
  21.             else
  22.               if rollOver(44) then
  23.                 go(the frame + 7)
  24.               else
  25.                 if rollOver(35) or rollOver(36) then
  26.                   go(the frame)
  27.                 else
  28.                   startTimer()
  29.                   repeat with i = 38 to 40
  30.                     puppetSprite(i, 0)
  31.                   end repeat
  32.                   if movieshow = 1 then
  33.                     set the keyDownScript to "checkkeytab"
  34.                   else
  35.                     set the keyDownScript to "checkkey0"
  36.                   end if
  37.                   if movieshow = 1 then
  38.                     go("move")
  39.                   else
  40.                     if g_pause = 1 then
  41.                       go("pa")
  42.                     else
  43.                       go("from")
  44.                     end if
  45.                   end if
  46.                 end if
  47.               end if
  48.             end if
  49.           end if
  50.         end if
  51.       end if
  52.     end if
  53.   end if
  54. end
  55.